Extension point configuration
In component org.nuxeo.runtime.aws.AWSConfigurationService
Documentation
Used to register AWS configurations. Example:
<configuration id="myconfig">
<accessKeyId>MY_ACCESS_KEY</accessKeyId>
<secretKey>MY_SECRET_KEY</secretKey>
<region>MY_REGION</region>
<trustStorePath>MY_TRUSTSTORE_PATH</trustStorePath>
<trustStorePassword>MY_TRUSTSTORE_PASSWORD</trustStorePassword>
<trustStoreType>MY_TRUSTSTORE_TYPE</trustStoreType>
<keyStorePath>MY_KEYSTORE_PATH</keyStorePath>
<keyStorePassword>MY_KEYSTORE_PASSWORD</keyStorePassword>
<keyStoreType>MY_KEYSTORE_TYPE</keyStoreType>
</configuration>
If the configuration id is not present, "default" is used.
To look up a configuration, use new NuxeoAWSCredentialsProvider("myconfig") and new NuxeoAWSRegionProvider("myconfig"). Alternatively, you can use the service AWSConfigurationService directly (but it just looks up provided configuration, it doesn't fall back to the AWS SDK default behavior).
Contribution Descriptors
- Class: org.nuxeo.runtime.aws.AWSConfigurationDescriptor